home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Atari Compendium
/
The Atari Compendium (Toad Computers) (1994).iso
/
files
/
prgtools
/
mint
/
distri~1
/
updates
/
incobj30.zoo
/
level30.zoo
/
usr
/
include
/
file.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1992-05-15
|
355 b
|
21 lines
#ifndef _FILE_H
#define _FILE_H
#ifndef _COMPILER_H
#include <compiler.h>
#endif
#ifdef __MINT__
/* lockf() comands */
#define LOCK_SH 1 /* shared lock */
#define LOCK_EX 2 /* exclusive lock */
#define LOCK_NB 4 /* non-blocking */
#define LOCK_UN 8 /* unlock */
__EXTERN int flock __PROTO((int, int));
#endif
#include <fcntl.h>
#endif /* _FILE_H */